home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE02 / TIPTRIX / MEMCLIP / MEMCLIP.DPR next >
Encoding:
Text File  |  1995-05-31  |  190 b   |  14 lines

  1. program Memclip;
  2.  
  3. uses
  4.   Forms,
  5.   Test in 'TEST.PAS' {Form1},
  6.   MemoClip in 'MEMOCLIP.PAS';
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.